home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 June
/
ccd0605.iso
/
Software
/
Freeware
/
Programare
/
highlight
/
highlight-W32GUI-2.2-10b-Setup.exe
/
{app}
/
src
/
datadir.h
< prev
next >
Wrap
C/C++ Source or Header
|
2004-08-17
|
1KB
|
44 lines
/***************************************************************************
datadir.h - description
-------------------
begin : Sam MΣr 1 2003
copyright : (C) 2003 by AndrΘ Simon
email : saalen@gmx.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef __datadir_H__
#define __datadir_H__
#include <string>
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
using namespace std;
class DataDir {
string datadir;
public:
DataDir();
// void searchDataDir();
const string & getDir();
const string getThemeDir();
const string getLangDefDir();
const string getI18nDir();
const string getExtDir();
const string getIndentSchemesDir();
};
#endif